home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / game / shoot / WarpQuake_src.readme < prev    next >
Text File  |  2000-05-06  |  20KB  |  459 lines

  1. Short:    WarpOS Quake port source
  2. Author:   Jarmo Laakkonen (jami.laakkonen@kolumbus.fi)
  3. Uploader: Jarmo Laakkonen (jami.laakkonen@kolumbus.fi)
  4. Type:     game/shoot
  5. Action:   NoStart
  6.  
  7. WarpQuake 0.6    02-03-2000
  8.  
  9. WarpQuake is a port of Quake based on Awinquake by Peter McGavin.
  10.  
  11. Requirements:
  12.  
  13. PPC board with WarpOS installed.
  14. AGA or GFX board.
  15. TCP/IP stack for network games.
  16. lowlevel.library for joypad support.
  17. Optionally chunkyppc.library.
  18.  
  19. chunkyppc.library is not required, but should speed up things on GFX cards.
  20. Unfortunately I haven't been able to test WarpQuake on a GFX card system,
  21. as I only have AGA, but it should work. In case you have problems with the
  22. chunkyppc support, you can use the -wpa8 switch, but then the game might
  23. run a bit slower.
  24.  
  25. The networking code has only been tested by running two Quake executables
  26. on the same machine. This worked fine.
  27.  
  28. Amiga specific commandline options:
  29.  
  30. -width:
  31. -height:
  32. Use these to specify display width and height when using chunkyppc.library.
  33. Otherwise you only get 320x200 play area although the screen is bigger.
  34. Note that these aren't needed when using native or chunkyppc.library AGA
  35. support.
  36.  
  37. -bat:
  38. Change to BAT MMU setup. This should give a slight speed increase, but
  39. may cause problems on some setups.
  40. This does the same thing as the changemmu tool supplied with WarpOS.
  41.  
  42. -aga:
  43. Use native AGA support with triplebuffering instead of chunkyppc.library.
  44. This is faster than chunkyppc AGA support.
  45.  
  46. -nodb:
  47. Disables AGA multibuffering. Saves one contextswitch but causes slight
  48. flicker.
  49.  
  50. -wpa8:
  51. Use WritePixelArray8(). Use this if chunkyppc support doesn't work.
  52.  
  53. -force:
  54. chunkyppc.library saves the last used screenmode in ENV: and ENVARC:.
  55. Next time you start WarpQuake the screenmode will be read from there.
  56. Use this switch if you want to override this.
  57.  
  58. -mouse:
  59. Enables mouse.
  60.  
  61. -mem:
  62. Sets the heapsize. Default is 8MB, but some Total Conversions may
  63. require more than this. BTW If you are looking for a good TC, try
  64. After the fall. You'll never want to play basic Quake again.
  65.  
  66. -joypad:
  67. Enables CD32 joypad. You need to bind the buttons yourself.
  68. The buttons are located in AUX1 - AUX11.
  69. AUX1  = left
  70. AUX2  = right
  71. AUX3  = up
  72. AUX4  = down
  73. AUX5  = red
  74. AUX6  = green
  75. AUX7  = yellow
  76. AUX8  = blue
  77. AUX9  = play
  78. AUX10 = forward
  79. AUX11 = reverse
  80.  
  81. Binding example: In Quake console type, BIND AUX5 "+ATTACK"
  82.  
  83. Additinally chunkyppc.library supports the following enviroment variables:
  84.  
  85. WarpQuake/dbuf:
  86. Use Doublebuffering.
  87.  
  88. WarpQuake/oldstyle:
  89. If this is set, ScrollVPort will be used, else Triple Buffering using
  90. ScreenBuffers.
  91.  
  92. WarpQuake/wb:
  93. If this is set, a Workbench Window will be used, not a screen
  94.  
  95. WarpQuake/pip:
  96. If this is set, a Picture in Picture will be used using the Picasso96API.library.
  97. Note: Not all Graphics Boards Support this. Currently only P96 PIP is supported,
  98. not CGX. Maybe in the future...
  99.  
  100. WarpQuake/pipnoclear:
  101. If this is set to 1, the PIP won't be cleared when opened.
  102.  
  103. WarpQuake/rtgmaster:
  104. Use rtgmaster Screenmode Requester instead of ASL one. rtgmaster.library
  105. will only be opened when this option is set, so that rtgmaster.library
  106. does not need to be installed to be able to use chunkyppc.library.
  107.  
  108. WarpQuake/likecgx:
  109. If you want CGX-like WB Window Support for P96 (Faster, but Window Borders
  110. disappear). For CGX it is automatically set, as it is the only possible
  111. method for CGX to reach (at least for 16 Bit) WB Window Support, for P96
  112. it is optional.
  113.  
  114. lockingmode:
  115. Set this to 0 for best performance on GFX cards.
  116.  
  117.  
  118. History:
  119.  
  120. 0.6:
  121. I released 0.5 too fast. The game would hang on exit if not using
  122. joypad.
  123.  
  124. 0.5:
  125. Removed a small bug in the joypad code.
  126. It should be possible to use screens bigger than 320x200 with
  127. chunkyppc.library now, but you have to use the -width and -height
  128. parameters.
  129. Added some asm optimizations from awinquake.
  130. Recompiled with gcc 2.95.1.
  131. Thanks to elf2exe2, the executable is now only 600KB.
  132. Some other minor changes.
  133.  
  134. 0.4:
  135. Changed -memory back to -mem ;)
  136. Removed the cd audio code as it doesn't work currently.
  137.  
  138. 0.3:
  139. Changed -mem to -memory as requested by Chris De Maeyer
  140. Small fix in the mouse handling.
  141. Some other minor changes.
  142.  
  143. 0.2:
  144. Added -bat option.
  145. ChunkyPPC double/triplebuffering actually works now ;)
  146. File access is MUCH faster now.
  147. Game hanged if no .pak files could be found.
  148.  
  149. 0.1:
  150. First release.
  151.  
  152.  
  153. Small FAQ:
  154.  
  155. Q: Why another PPC Quake port?
  156. A: Well it started when I found a bug in the -mem option of Awinquake and
  157.    decided to look at the source. After fixing that, my friend suggested
  158.    that I should learn to play with the mouse instead of the keyboard.
  159.    But the mouse support in Awinquake sucked, so I fixed that too.
  160.    Then I got fed up with the crappy PowerUP software which kept measuring
  161.    my bus speed incorrectly, so I ported it to WarpOS and added chunkyppc
  162.    and joypad support. This is also a good way to sharpen my programming
  163.    skills. Until now I have mainly done/ported some CLI programs.
  164.    I know that Frank Wille and Steffen Haeuser are working on a port too,
  165.    and when finished it will probably be much better than this. In it's
  166.    current state it's too buggy for my taste.
  167.  
  168. Q: Why does the game crash?
  169.    Maybe your stack is too low. Try setting it to 500000 bytes.
  170.    Also try without the -bat parameter.
  171.  
  172. Q: Why doesn't the game work on my GFX card?
  173. A: The GFX card support in WarpQuake might be broken, as it hasn't been
  174.    tested at all. Try the -wpa8 option.
  175.  
  176. Q: Why does mouse slow down the game so much?
  177. A: Because there's much contextswitches needed for this. If you are using
  178.    the keyboard at the same time the slowdown is even worse. This is cured
  179.    by setting the key repeat from input prefs to slowest possible. This
  180.    reduces contextswitches to minimium. If you are running on AGA and don't
  181.    mind the slight flicker, you can also try disabling multibuffering.
  182.  
  183. Q: Why doesn't the middle mouse button work?
  184. A: You probably have some commodity running that uses the button. Disable
  185.    all commodities and try again.
  186.  
  187. Q: Any other speed tips?
  188. A: Use the -bat option to change to BAT MMU setup. This gives about 1 FPS
  189.    more on my 603e/240MHz. Use 320x200 screenmode for best speed.
  190.  
  191. Q: Will there be an PowerUP version?
  192. A: No. I don't trust kernels that can't even measure the bus speed
  193.    correctly.
  194.  
  195. Q: Will there be AHI support?
  196. A: Maybe, but don't bet on it.
  197.  
  198. Q: Is the source available?
  199. A: Yes, as required by the GPL license.
  200.  
  201. Q: Why does the game run in 320x200 although I select a bigger screen?
  202. A: This happens only on GFX cards when using chunkyppc.library.
  203.    Use the -width and -height parameters or -wpa8.
  204.  
  205. Q: Why don't you get a GFX card?
  206. A: Because I'm poor.
  207.  
  208. Q: Well, why don't you get a job then?
  209. A: Because I'm lazy.
  210.  
  211. Q: You're the crapiest coder I've ever seen. Why don't you do something
  212.    useful with your life like collect stamps or something?
  213. A: I know, but I'm learning more everyday.
  214.  
  215. Q: I have some questions that are not answered in this doc. How can I
  216.    reach you?
  217. A: Email to jami.laakkonen@kolumbus.fi
  218.  
  219.  
  220. ============================= Archive contents =============================
  221.  
  222. Original  Packed Ratio    Date     Time    Name
  223. -------- ------- ----- --------- --------  -------------
  224.    11601    1614 86.0% 02-Mar-00 16:26:50 +adivtab.h
  225.     8756    1950 77.7% 02-Mar-00 16:26:48 +amiga_ppc_c2p.s
  226.     4883    1830 62.5% 02-Mar-00 16:26:48 +amiga_ppc_d_scan.s
  227.     3477    1324 61.9% 02-Mar-00 16:26:48 +amiga_ppc_mathlib.s
  228.       43      43  0.0% 02-Mar-00 16:26:50 +amiga_timer.h
  229.      244     153 37.2% 02-Mar-00 16:26:48 +amiga_timer.s
  230.     6476    1181 81.7% 02-Mar-00 16:26:50 +anorms.h
  231.    21280    3948 81.4% 02-Mar-00 16:26:50 +anorm_dots.h
  232.     4259    1373 67.7% 02-Mar-00 16:26:50 +asm_draw.h
  233.     2542    1026 59.6% 02-Mar-00 16:26:50 +asm_i386.h
  234.     2859     645 77.4% 02-Mar-00 16:26:50 +block16.h
  235.     2808     641 77.1% 02-Mar-00 16:26:50 +block8.h
  236.     7423    2667 64.0% 02-Mar-00 16:26:50 +bspfile.h
  237.      965     520 46.1% 02-Mar-00 16:26:52 +cdaudio.h
  238.     1057     560 47.0% 02-Mar-00 16:26:38 +cd_amiga.c
  239.    19515    4424 77.3% 02-Mar-00 16:26:38 +cd_audio.c
  240.     7661    2401 68.6% 02-Mar-00 16:26:38 +cd_linux.c
  241.     1057     560 47.0% 02-Mar-00 16:26:38 +cd_null.c
  242.    10147    2695 73.4% 02-Mar-00 16:26:38 +cd_win.c
  243.     2518    1185 52.9% 02-Mar-00 16:26:38 +chase.c
  244.     9324    3643 60.9% 02-Mar-00 16:26:52 +client.h
  245.     7314    2582 64.6% 02-Mar-00 16:26:38 +cl_demo.c
  246.    11208    3364 69.9% 02-Mar-00 16:26:38 +cl_input.c
  247.    15379    5032 67.2% 02-Mar-00 16:26:38 +cl_main.c
  248.    20793    6548 68.5% 02-Mar-00 16:26:38 +cl_parse.c
  249.     8901    2500 71.9% 02-Mar-00 16:26:38 +cl_tent.c
  250.    12124    4077 66.3% 02-Mar-00 16:26:38 +cmd.c
  251.     4457    1921 56.8% 02-Mar-00 16:26:52 +cmd.h
  252.    36276   10995 69.6% 02-Mar-00 16:26:38 +common.c
  253.     5613    1877 66.5% 02-Mar-00 16:26:52 +common.h
  254.     7487    2514 66.4% 02-Mar-00 16:26:38 +conproc.c
  255.     1107     601 45.7% 02-Mar-00 16:26:52 +conproc.h
  256.    12836    4331 66.2% 02-Mar-00 16:26:38 +console.c
  257.     1524     738 51.5% 02-Mar-00 16:26:52 +console.h
  258.     3518    1681 52.2% 02-Mar-00 16:26:38 +crc.c
  259.      918     513 44.1% 02-Mar-00 16:26:52 +crc.h
  260.     4419    1602 63.7% 02-Mar-00 16:26:38 +cvar.c
  261.     3485    1620 53.5% 02-Mar-00 16:26:52 +cvar.h
  262.     1193     468 60.7% 02-Mar-00 16:26:50 +dosasm.s
  263.     2533     974 61.5% 02-Mar-00 16:26:52 +dosisms.h
  264.     5100    1862 63.4% 02-Mar-00 16:26:40 +dos_v2.c
  265.    17424    4397 74.7% 02-Mar-00 16:26:40 +draw.c
  266.     1529     732 52.1% 02-Mar-00 16:26:52 +draw.h
  267.     2610     901 65.4% 02-Mar-00 16:26:48 +d_copy.s
  268.    24375    5428 77.7% 02-Mar-00 16:26:48 +d_draw.s
  269.    22728    4523 80.0% 02-Mar-00 16:26:48 +d_draw16.s
  270.     7567    2398 68.3% 02-Mar-00 16:26:38 +d_edge.c
  271.     1988     933 53.0% 02-Mar-00 16:26:38 +d_fill.c
  272.     6739    2582 61.6% 02-Mar-00 16:26:52 +d_iface.h
  273.     2847    1104 61.2% 02-Mar-00 16:26:52 +d_ifacea.h
  274.     3451    1451 57.9% 02-Mar-00 16:26:38 +d_init.c
  275.     3081    1474 52.1% 02-Mar-00 16:26:52 +d_local.h
  276.     2411    1097 54.5% 02-Mar-00 16:26:38 +d_modech.c
  277.     3894    1268 67.4% 02-Mar-00 16:26:38 +d_part.c
  278.    10186    2779 72.7% 02-Mar-00 16:26:48 +d_parta.s
  279.    45605    8851 80.5% 02-Mar-00 16:26:50 +d_polysa.s
  280.    26180    6507 75.1% 02-Mar-00 16:26:38 +d_polyse.c
  281.    12495    3007 75.9% 02-Mar-00 16:26:38 +d_scan.c
  282.     2087     926 55.6% 02-Mar-00 16:26:50 +d_scana.s
  283.     3325    1413 57.5% 02-Mar-00 16:26:38 +d_sky.c
  284.    20702    4726 77.1% 02-Mar-00 16:26:50 +d_spr8.s
  285.    10545    3195 69.7% 02-Mar-00 16:26:38 +d_sprite.c
  286.     7514    2557 65.9% 02-Mar-00 16:26:38 +d_surf.c
  287.     1562     783 49.8% 02-Mar-00 16:26:40 +d_vars.c
  288.     5292    1634 69.1% 02-Mar-00 16:26:50 +d_varsa.s
  289.     1266     696 45.0% 02-Mar-00 16:26:40 +d_zpoint.c
  290.     6914    2731 60.5% 02-Mar-00 16:26:52 +glquake.h
  291.     6171    2483 59.7% 02-Mar-00 16:26:52 +glquake2.h
  292.    27796    7860 71.7% 02-Mar-00 16:26:40 +gl_draw.c
  293.     8054    2549 68.3% 02-Mar-00 16:26:40 +gl_mesh.c
  294.    40372   10575 73.8% 02-Mar-00 16:26:40 +gl_model.c
  295.     9543    3324 65.1% 02-Mar-00 16:26:52 +gl_model.h
  296.     4244    1750 58.7% 02-Mar-00 16:26:40 +gl_refrag.c
  297.     7224    2636 63.5% 02-Mar-00 16:26:40 +gl_rlight.c
  298.    25608    7840 69.3% 02-Mar-00 16:26:40 +gl_rmain.c
  299.    11453    3630 68.3% 02-Mar-00 16:26:40 +gl_rmisc.c
  300.    35220    9345 73.4% 02-Mar-00 16:26:40 +gl_rsurf.c
  301.    17544    5769 67.1% 02-Mar-00 16:26:40 +gl_screen.c
  302.     3544    1419 59.9% 02-Mar-00 16:26:40 +gl_test.c
  303.    19220    6555 65.8% 02-Mar-00 16:26:40 +gl_vidlinux.c
  304.    22070    7612 65.5% 02-Mar-00 16:26:40 +gl_vidlinuxglx.c
  305.    46584   14147 69.6% 02-Mar-00 16:26:40 +gl_vidnt.c
  306.    22105    6763 69.4% 02-Mar-00 16:26:40 +gl_warp.c
  307.     3202    1230 61.5% 02-Mar-00 16:26:52 +gl_warp_sin.h
  308.    20221    6450 68.1% 02-Mar-00 16:26:40 +host.c
  309.    38170    9526 75.0% 02-Mar-00 16:26:40 +host_cmd.c
  310.     1131     627 44.5% 02-Mar-00 16:26:52 +input.h
  311.     4630    1683 63.6% 02-Mar-00 16:26:40 +in_amiga.c
  312.    12418    3534 71.5% 02-Mar-00 16:26:40 +in_dos.c
  313.      955     545 42.9% 02-Mar-00 16:26:40 +in_null.c
  314.     5622    2139 61.9% 02-Mar-00 16:26:40 +in_sun.c
  315.    27276    7936 70.9% 02-Mar-00 16:26:42 +in_win.c
  316.    14921    4638 68.9% 02-Mar-00 16:26:42 +keys.c
  317.     3180    1287 59.5% 02-Mar-00 16:26:52 +keys.h
  318.     5657    1563 72.3% 02-Mar-00 16:26:56 +Makefile
  319.    10991    1947 82.2% 02-Mar-00 16:26:50 +math.s
  320.    12396    3730 69.9% 02-Mar-00 16:26:42 +mathlib.c
  321.     2761    1256 54.5% 02-Mar-00 16:26:52 +mathlib.h
  322.    66592   16042 75.9% 02-Mar-00 16:26:42 +menu.c
  323.     1093     617 43.5% 02-Mar-00 16:26:52 +menu.h
  324.    42668   10286 75.8% 02-Mar-00 16:26:42 +model.c
  325.     8201    2811 65.7% 02-Mar-00 16:26:52 +model.h
  326.     3146    1270 59.6% 02-Mar-00 16:26:52 +modelgen.h
  327.    27749    7818 71.8% 02-Mar-00 16:26:52 +mpdosock.h
  328.     5711    1773 68.9% 02-Mar-00 16:26:42 +mplib.c
  329.    22207    4960 77.6% 02-Mar-00 16:26:42 +mplpc.c
  330.     9718    3303 66.0% 02-Mar-00 16:26:52 +net.h
  331.    11660    3267 71.9% 02-Mar-00 16:26:42 +net_amigaudp.c
  332.     1990     835 58.0% 02-Mar-00 16:26:42 +net_bsd.c
  333.    19322    5464 71.7% 02-Mar-00 16:26:42 +net_bw.c
  334.     1682     694 58.7% 02-Mar-00 16:26:52 +net_bw.h
  335.    30773    7180 76.6% 02-Mar-00 16:26:42 +net_comx.c
  336.    33185    7487 77.4% 02-Mar-00 16:26:42 +net_dgrm.c
  337.     1353     633 53.2% 02-Mar-00 16:26:52 +net_dgrm.h
  338.     3139    1071 65.8% 02-Mar-00 16:26:42 +net_dos.c
  339.    18732    4697 74.9% 02-Mar-00 16:26:42 +net_ipx.c
  340.     1701     698 58.9% 02-Mar-00 16:26:54 +net_ipx.h
  341.     5499    1642 70.1% 02-Mar-00 16:26:42 +net_loop.c
  342.     1304     626 51.9% 02-Mar-00 16:26:54 +net_loop.h
  343.    20675    5448 73.6% 02-Mar-00 16:26:42 +net_main.c
  344.    11360    3289 71.0% 02-Mar-00 16:26:42 +net_mp.c
  345.     1739     704 59.5% 02-Mar-00 16:26:54 +net_mp.h
  346.     1237     651 47.3% 02-Mar-00 16:26:42 +net_none.c
  347.    21414    5000 76.6% 02-Mar-00 16:26:42 +net_ser.c
  348.     1326     630 52.4% 02-Mar-00 16:26:54 +net_ser.h
  349.    10170    2966 70.8% 02-Mar-00 16:26:42 +net_udp.c
  350.     1701     700 58.8% 02-Mar-00 16:26:54 +net_udp.h
  351.     3667    1331 63.7% 02-Mar-00 16:26:42 +net_vcr.c
  352.     1327     667 49.7% 02-Mar-00 16:26:54 +net_vcr.h
  353.     2456     934 61.9% 02-Mar-00 16:26:42 +net_win.c
  354.    15366    4399 71.3% 02-Mar-00 16:26:42 +net_wins.c
  355.     1720     701 59.2% 02-Mar-00 16:26:54 +net_wins.h
  356.    11197    3089 72.4% 02-Mar-00 16:26:44 +net_wipx.c
  357.     1720     703 59.1% 02-Mar-00 16:26:54 +net_wipx.h
  358.        0       0  0.0% 02-Mar-00 16:26:44 +net_wso.c
  359.     1292     610 52.7% 02-Mar-00 16:26:44 +nonintel.c
  360.      827     482 41.7% 02-Mar-00 16:26:54 +progdefs.h
  361.     2598     866 66.6% 02-Mar-00 16:26:56 +progdefs.q1
  362.     3955    1551 60.7% 02-Mar-00 16:26:54 +progs.h
  363.     4956    2058 58.4% 02-Mar-00 16:26:54 +protocol.h
  364.    39215   10728 72.6% 02-Mar-00 16:26:44 +pr_cmds.c
  365.     3247    1334 58.9% 02-Mar-00 16:26:54 +pr_comp.h
  366.    23120    6538 71.7% 02-Mar-00 16:26:44 +pr_edict.c
  367.    12378    3643 70.5% 02-Mar-00 16:26:44 +pr_exec.c
  368.     6348    1831 71.1% 02-Mar-00 16:26:54 +quakeasm.h
  369.     8493    3324 60.8% 02-Mar-00 16:26:54 +quakedef.h
  370.     5024    2075 58.6% 02-Mar-00 16:26:54 +render.h
  371.      634     292 53.9% 02-Mar-00 16:26:54 +resource.h
  372.     8721    2097 75.9% 02-Mar-00 16:26:44 +r_aclip.c
  373.     5545    1376 75.1% 02-Mar-00 16:26:50 +r_aclipa.s
  374.    19393    5872 69.7% 02-Mar-00 16:26:44 +r_alias.c
  375.     7090    2225 68.6% 02-Mar-00 16:26:50 +r_aliasa.s
  376.    14863    4503 69.7% 02-Mar-00 16:26:44 +r_bsp.c
  377.    21013    5485 73.8% 02-Mar-00 16:26:44 +r_draw.c
  378.    18931    5140 72.8% 02-Mar-00 16:26:50 +r_drawa.s
  379.    16565    4591 72.2% 02-Mar-00 16:26:44 +r_edge.c
  380.    17963    4003 77.7% 02-Mar-00 16:26:50 +r_edgea.s
  381.     5315    1944 63.4% 02-Mar-00 16:26:44 +r_efrag.c
  382.     5580    2022 63.7% 02-Mar-00 16:26:44 +r_light.c
  383.     8376    2936 64.9% 02-Mar-00 16:26:54 +r_local.h
  384.    25124    7931 68.4% 02-Mar-00 16:26:44 +r_main.c
  385.    10133    3553 64.9% 02-Mar-00 16:26:44 +r_misc.c
  386.     9085    3370 62.9% 02-Mar-00 16:26:44 +r_misc1.c
  387.     1313     698 46.8% 02-Mar-00 16:26:44 +r_misc2.c
  388.    15960    4030 74.7% 02-Mar-00 16:26:44 +r_part.c
  389.     5081    2146 57.7% 02-Mar-00 16:26:54 +r_shared.h
  390.     5426    1705 68.5% 02-Mar-00 16:26:44 +r_sky.c
  391.    11177    3363 69.9% 02-Mar-00 16:26:44 +r_sprite.c
  392.    14735    3825 74.0% 02-Mar-00 16:26:44 +r_surf.c
  393.     1244     656 47.2% 02-Mar-00 16:26:44 +r_vars.c
  394.     1725     802 53.5% 02-Mar-00 16:26:50 +r_varsa.s
  395.    29301    6902 76.4% 02-Mar-00 16:26:44 +sbar.c
  396.     1303     702 46.1% 02-Mar-00 16:26:54 +sbar.h
  397.    19967    6139 69.2% 02-Mar-00 16:26:44 +screen.c
  398.     1668     807 51.6% 02-Mar-00 16:26:54 +screen.h
  399.     7370    2892 60.7% 02-Mar-00 16:26:54 +server.h
  400.     7268    2291 68.4% 02-Mar-00 16:26:46 +snd_amiga.c
  401.    20228    6362 68.5% 02-Mar-00 16:26:46 +snd_dma.c
  402.    13518    4001 70.4% 02-Mar-00 16:26:46 +snd_dos.c
  403.    35419    8368 76.3% 02-Mar-00 16:26:46 +snd_gus.c
  404.     5880    1958 66.7% 02-Mar-00 16:26:46 +snd_linux.c
  405.     7023    2524 64.0% 02-Mar-00 16:26:46 +snd_mem.c
  406.     9275    2817 69.6% 02-Mar-00 16:26:46 +snd_mix.c
  407.     4883    1595 67.3% 02-Mar-00 16:26:50 +snd_mixa.s
  408.     1469     779 46.9% 02-Mar-00 16:26:46 +snd_next.c
  409.     1815     815 55.0% 02-Mar-00 16:26:46 +snd_null.c
  410.     4437    1664 62.4% 02-Mar-00 16:26:46 +snd_sun.c
  411.    16014    4913 69.3% 02-Mar-00 16:26:46 +snd_win.c
  412.     5019    1991 60.3% 02-Mar-00 16:26:54 +sound.h
  413.     2918    1191 59.1% 02-Mar-00 16:26:54 +spritegn.h
  414.     3349    1257 62.4% 02-Mar-00 16:26:50 +surf16.s
  415.    13932    2158 84.5% 02-Mar-00 16:26:50 +surf8.s
  416.    28572    8747 69.3% 02-Mar-00 16:26:46 +sv_main.c
  417.     9909    3273 66.9% 02-Mar-00 16:26:46 +sv_move.c
  418.    38959    9981 74.3% 02-Mar-00 16:26:46 +sv_phys.c
  419.    13661    4126 69.7% 02-Mar-00 16:26:46 +sv_user.c
  420.     2010     966 51.9% 02-Mar-00 16:26:54 +sys.h
  421.     6679    2430 63.6% 02-Mar-00 16:26:46 +sys_amiga.c
  422.    20709    6970 66.3% 02-Mar-00 16:26:46 +sys_dos.c
  423.     1242     456 63.2% 02-Mar-00 16:26:50 +sys_dosa.s
  424.    12626    4396 65.1% 02-Mar-00 16:26:46 +sys_linux.c
  425.     4038    1452 64.0% 02-Mar-00 16:26:46 +sys_null.c
  426.     6954    2467 64.5% 02-Mar-00 16:26:46 +sys_sun.c
  427.    17266    5769 66.5% 02-Mar-00 16:26:46 +sys_win.c
  428.     2106     937 55.5% 02-Mar-00 16:26:50 +sys_wina.s
  429.     5473    2089 61.8% 02-Mar-00 16:26:46 +sys_wind.c
  430.       60      60  0.0% 02-Mar-00 16:26:46 +version.c
  431.    15160    1966 87.0% 02-Mar-00 16:26:54 +vgamodes.h
  432.     2833    1342 52.6% 02-Mar-00 16:26:54 +vid.h
  433.    17365    5157 70.3% 02-Mar-00 16:26:46 +vid_amiga.c
  434.    15466    4379 71.6% 02-Mar-00 16:26:48 +vid_dos.c
  435.     2899    1151 60.2% 02-Mar-00 16:26:54 +vid_dos.h
  436.    19899    5922 70.2% 02-Mar-00 16:26:48 +vid_ext.c
  437.     2062     954 53.7% 02-Mar-00 16:26:48 +vid_null.c
  438.    29686    9801 66.9% 02-Mar-00 16:26:48 +vid_sunx.c
  439.    30042    9734 67.5% 02-Mar-00 16:26:48 +vid_sunxil.c
  440.    21046    6569 68.7% 02-Mar-00 16:26:48 +vid_svgalib.c
  441.    10036    3081 69.3% 02-Mar-00 16:26:48 +vid_vga.c
  442.    72263   20181 72.0% 02-Mar-00 16:26:48 +vid_win.c
  443.    27748    8427 69.6% 02-Mar-00 16:26:48 +vid_x.c
  444.    25155    6955 72.3% 02-Mar-00 16:26:48 +view.c
  445.     1067     608 43.0% 02-Mar-00 16:26:54 +view.h
  446.     1789     835 53.3% 02-Mar-00 16:26:48 +vregset.c
  447.     1435     743 48.2% 02-Mar-00 16:26:54 +vregset.h
  448.     3575    1447 59.5% 02-Mar-00 16:26:48 +wad.c
  449.     1812     904 50.1% 02-Mar-00 16:26:56 +wad.h
  450.     6999    3155 54.9% 02-Mar-00 16:26:56 +WarpQuake_src.readme
  451.     3592    1507 58.0% 02-Mar-00 16:26:56 +winquake.h
  452.    22349    6572 70.5% 02-Mar-00 16:26:48 +world.c
  453.     2649    1323 50.0% 02-Mar-00 16:26:56 +world.h
  454.     2954    1346 54.4% 02-Mar-00 16:26:50 +worlda.s
  455.    18822    5404 71.2% 02-Mar-00 16:26:48 +zone.c
  456.     3313    1463 55.8% 02-Mar-00 16:26:56 +zone.h
  457. -------- ------- ----- --------- --------
  458.  2550961  751786 70.5% 03-Mar-100 22:06:26   233 files
  459.